home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / lynx / source / doslynx / src / tdoslyn8.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-25  |  705 b   |  23 lines

  1. //    Copyright (c) 1993, University of Kansas, All Rights Reserved
  2. //
  3. //    Class:        TDosLynx : public TApplication
  4. //    Include File:    TDosLynx.h
  5. //    Purpose:    Implement our application object.
  6. //    Remarks/Portability/Dependencies/Restrictions:
  7. //    Revision History:
  8. //        12-09-93    created
  9. //        02-09-94    Split all members into seperate files to
  10. //                enhance overlay support.
  11. #include"tdoslynx.h"
  12.  
  13. void TDosLynx::getEvent(TEvent& TE_Event)    {
  14. //    Purpose:    Event handler
  15. //    Arguments:    TE_Event    Reference to hold event.
  16. //    Return Value:   void
  17. //    Remarks/Portability/Dependencies/Restrictions:
  18. //    Revision History:
  19. //        12-13-93    created
  20.  
  21.     //    have the base get the event.
  22.     TProgram::getEvent(TE_Event);
  23. }